home *** CD-ROM | disk | FTP | other *** search
- ; Install_AKCC.script V3.03
- ; © 1993-94 by Andreas R. Kleinert.
- ; This is the Installer Script for AKCC
-
- (copylib
- (prompt "Installing akcc_gen0.library to LIBS: ...")
- (help @copylib-help)
- (source ":libs/akcc_gen0.library")
- (dest "LIBS:")
- (confirm)
- )
-
- (copyfiles
- (prompt "Installing AKCC commands now.")
- (help @copyfiles-help)
- (source ":AKCC/AKCC_Commands")
- (set akcomdir
- (askdir
- (prompt "Select path to install AKCC commands")
- (help @askdir-help)
- (newpath)
- (default "SYS:AKCC")
- )
- )
- (dest akcomdir)
- (pattern "#?")
- (files)
- (confirm)
- )
-
- (copyfiles
- (prompt "Installing AKCC Shell now.")
- (help @copyfiles-help)
- (source ":AKCC/AKCC_Shell")
- (set akshelldir
- (askdir
- (prompt "Select path to install AKCC Shell")
- (help @askdir-help)
- (newpath)
- (default akcomdir)
- )
- )
- (dest akshelldir)
- (pattern "~(#?.doc)")
- (files)
- (infos)
- (confirm)
- )
-
- (copyfiles
- (prompt "Installing AKCC Shell Documentation Files now.")
- (help @copyfiles-help)
- (source ":AKCC/AKCC_Shell")
- (set akshelldocdir
- (askdir
- (prompt "Select path to install AKCC Shell Doc Files")
- (help @askdir-help)
- (newpath)
- (default (cat akshelldir "/AKCC_Docs"))
- )
- )
- (dest akshelldocdir)
- (pattern "(#?.doc)")
- (infos)
- (files)
- (confirm)
- )
-
- (copyfiles
- (prompt "Installing AmigaGuide Documentation Files now.")
- (help @copyfiles-help)
- (source ":AKCC/AKCC_Guide")
- (set akguidedir
- (askdir
- (prompt "Select path to install AKCC AmigaGuide Files")
- (help @askdir-help)
- (newpath)
- (default (cat akcomdir "/AKCC_Guide"))
- )
- )
- (dest akguidedir)
- (all)
- (confirm)
- )
-
-
- (startup "AKCC"
- (prompt "Now modifying your S:User-Startup to use AKCC ...")
- (help @startup-help)
- (command "Path "akcomdir" add\n")
- (command "Assign AKCC: "akcomdir)
- )
-
-